home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst7-19.asm < prev    next >
Encoding:
Assembly Source File  |  1990-02-15  |  281 b   |  16 lines

  1. ;
  2. ; *** Listing 7-19 ***
  3. ;
  4. ; Measures the performance of multiplying by 80 with
  5. ; the MUL instruction
  6. ;
  7.     sub    ax,ax
  8.     call    ZTimerOn
  9.     rept    1000
  10.     mov    ax,10    ;so we have a constant value to
  11.             ; multiply by
  12.     mov    dx,80    ;amount to multiply by
  13.     mul    dx
  14.     endm
  15.     call    ZTimerOff
  16.